今天來跟大家介紹 GCP terraform 如何創建掛載 disk 的 instance
根據 google 的文件
Create a persistent disk from a data source | Compute Engine Documentation | Google Cloud
可以查到基本用法
而在 terraform 的文件
可以查到能使用的參數
值得注意的是 VM 內要新增參數
depends_on = [google_compute_disk.data-disk1]
attached_disk {
source = google_compute_disk.data-disk1.self_link
mode = "READ_WRITE"
}
clone 後進入專案該資料夾
https://github.com/leon123858/terroform-sample/tree/main/IT-man-sample/day2
創建用 make start
釋放資源用 make destroy